aboutsummaryrefslogtreecommitdiffstats
path: root/pages/category/[id].vue
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.com>2024-03-10 01:31:42 +0000
committerLeonardo Bishop <me@leonardobishop.com>2024-03-10 01:31:42 +0000
commit71e4ad2c71efea471923ea47f01bfda841387f81 (patch)
treef08293fdc56b4eb2e3d0e520b79b4d8aad78924c /pages/category/[id].vue
parent4495c02c41b95ce6df0c34dbf6ac62f7addae7a3 (diff)
Use nuxt auto import magic
Diffstat (limited to 'pages/category/[id].vue')
-rw-r--r--pages/category/[id].vue7
1 files changed, 2 insertions, 5 deletions
diff --git a/pages/category/[id].vue b/pages/category/[id].vue
index 66ad26c..59993e7 100644
--- a/pages/category/[id].vue
+++ b/pages/category/[id].vue
@@ -1,9 +1,6 @@
<script setup lang="ts">
import { useSessionStore } from '@/stores/session';
import { stripColorCodes } from '@/lib/util';
-import CategoryOptionsPanel from '@/components/Editor/Category/CategoryOptionsPanel.vue';
-import CategoryChildrenOptionsPanel from '@/components/Editor/Category/CategoryChildrenOptionsPanel.vue';
-import Button from '@/components/Control/Button.vue';
definePageMeta({
layout: 'editor'
@@ -30,8 +27,8 @@ const categoryName = sessionStore.getCategoryById(categoryId)?.display.name;
</div>
<div id="options-container">
- <CategoryOptionsPanel :categoryId="categoryId" />
- <CategoryChildrenOptionsPanel :categoryId="categoryId" />
+ <EditorCategoryOptionsPanel :categoryId="categoryId" />
+ <EditorCategoryChildrenOptionsPanel :categoryId="categoryId" />
</div>
</template>